home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / python2.4 / encodings / cp1251.pyo (.txt) < prev    next >
Python Compiled Bytecode  |  2005-10-18  |  4KB  |  152 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyo (Python 2.4)
  3.  
  4. """ Python Character Mapping Codec generated from 'CP1251.TXT' with gencodec.py.
  5.  
  6. Written by Marc-Andre Lemburg (mal@lemburg.com).
  7.  
  8. (c) Copyright CNRI, All Rights Reserved. NO WARRANTY.
  9. (c) Copyright 2000 Guido van Rossum.
  10.  
  11. """
  12. import codecs
  13.  
  14. class Codec(codecs.Codec):
  15.     
  16.     def encode(self, input, errors = 'strict'):
  17.         return codecs.charmap_encode(input, errors, encoding_map)
  18.  
  19.     
  20.     def decode(self, input, errors = 'strict'):
  21.         return codecs.charmap_decode(input, errors, decoding_map)
  22.  
  23.  
  24.  
  25. class StreamWriter(Codec, codecs.StreamWriter):
  26.     pass
  27.  
  28.  
  29. class StreamReader(Codec, codecs.StreamReader):
  30.     pass
  31.  
  32.  
  33. def getregentry():
  34.     return (Codec().encode, Codec().decode, StreamReader, StreamWriter)
  35.  
  36. decoding_map = codecs.make_identity_dict(range(256))
  37. decoding_map.update({
  38.     128: 1026,
  39.     129: 1027,
  40.     130: 8218,
  41.     131: 1107,
  42.     132: 8222,
  43.     133: 8230,
  44.     134: 8224,
  45.     135: 8225,
  46.     136: 8364,
  47.     137: 8240,
  48.     138: 1033,
  49.     139: 8249,
  50.     140: 1034,
  51.     141: 1036,
  52.     142: 1035,
  53.     143: 1039,
  54.     144: 1106,
  55.     145: 8216,
  56.     146: 8217,
  57.     147: 8220,
  58.     148: 8221,
  59.     149: 8226,
  60.     150: 8211,
  61.     151: 8212,
  62.     152: None,
  63.     153: 8482,
  64.     154: 1113,
  65.     155: 8250,
  66.     156: 1114,
  67.     157: 1116,
  68.     158: 1115,
  69.     159: 1119,
  70.     161: 1038,
  71.     162: 1118,
  72.     163: 1032,
  73.     165: 1168,
  74.     168: 1025,
  75.     170: 1028,
  76.     175: 1031,
  77.     178: 1030,
  78.     179: 1110,
  79.     180: 1169,
  80.     184: 1105,
  81.     185: 8470,
  82.     186: 1108,
  83.     188: 1112,
  84.     189: 1029,
  85.     190: 1109,
  86.     191: 1111,
  87.     192: 1040,
  88.     193: 1041,
  89.     194: 1042,
  90.     195: 1043,
  91.     196: 1044,
  92.     197: 1045,
  93.     198: 1046,
  94.     199: 1047,
  95.     200: 1048,
  96.     201: 1049,
  97.     202: 1050,
  98.     203: 1051,
  99.     204: 1052,
  100.     205: 1053,
  101.     206: 1054,
  102.     207: 1055,
  103.     208: 1056,
  104.     209: 1057,
  105.     210: 1058,
  106.     211: 1059,
  107.     212: 1060,
  108.     213: 1061,
  109.     214: 1062,
  110.     215: 1063,
  111.     216: 1064,
  112.     217: 1065,
  113.     218: 1066,
  114.     219: 1067,
  115.     220: 1068,
  116.     221: 1069,
  117.     222: 1070,
  118.     223: 1071,
  119.     224: 1072,
  120.     225: 1073,
  121.     226: 1074,
  122.     227: 1075,
  123.     228: 1076,
  124.     229: 1077,
  125.     230: 1078,
  126.     231: 1079,
  127.     232: 1080,
  128.     233: 1081,
  129.     234: 1082,
  130.     235: 1083,
  131.     236: 1084,
  132.     237: 1085,
  133.     238: 1086,
  134.     239: 1087,
  135.     240: 1088,
  136.     241: 1089,
  137.     242: 1090,
  138.     243: 1091,
  139.     244: 1092,
  140.     245: 1093,
  141.     246: 1094,
  142.     247: 1095,
  143.     248: 1096,
  144.     249: 1097,
  145.     250: 1098,
  146.     251: 1099,
  147.     252: 1100,
  148.     253: 1101,
  149.     254: 1102,
  150.     255: 1103 })
  151. encoding_map = codecs.make_encoding_map(decoding_map)
  152.